home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / gawk / gawk213b.zoo / test / rand.awk < prev    next >
Encoding:
AWK Script  |  1991-04-06  |  94 b   |  7 lines

  1. BEGIN {
  2.     srand()
  3.     for (i = 0; i < 19; i++) 
  4.         printf "%3d ", (1 + int(100 * rand()))
  5.     print
  6. }
  7.